Get distinct values
Get all the unique values in a given column
SELECT DISTINCT country FROM person;
SELECT DISTINCT country, first_name FROM person;
Get all the unique values in a given column
SELECT DISTINCT country FROM person;
SELECT DISTINCT country, first_name FROM person;